home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / bbsutils / bgfax120.arj / HELPME.ARJ / FD212.TXT < prev    next >
Text File  |  1994-03-24  |  3KB  |  101 lines

  1. --------------------------------------------------------------------------
  2. Setup hints for using BGFAX, Class 2, with FD 2.12/SW             03-24-94
  3. B.J. Guillot
  4. FidoNet 106/400                              InterNet: st1r8@jetson.uh.edu
  5. --------------------------------------------------------------------------
  6.  
  7. If you need hints for FD 2.12 and Class 2.0, see "FD-USR.TXT".
  8. If you need hints for FD 2.12 and ZyXEL, see "FD-ZYXEL.TXT".
  9. If you need hints for FD 2.12 and Class 1, see "FD-HAYES.TXT".
  10.  
  11. Keep in mind that fax commands cannot be stored in NVRAM.  Note that for
  12. standard Class 2 modems, your dial strings do not need to be modified.
  13.  
  14. Here is the relevant information from FDSETUP ...
  15.  
  16. [FDSETUP] Modem -> Command Strings
  17.   Init-1 ... atz|
  18.   Init-2 ... at+fcr=1;+fdcc=1,5,0,2,0,0,0,0|
  19.   Init-3 ... at+flid="713 555 1212"|
  20.  
  21.   +fcr=1                   enables fax receiption
  22.   +flid="713 555 1212"     sets your FAX ID, up to 20 characters
  23.  
  24.   +fdcc=1,5,0,2,0,0,0,0    enable high resolution, 14400 fax
  25.   +fdcc=1,3,0,2,0,0,0,0    enable high resolution, 9600 fax
  26.  
  27. Do not attempt to give a 9600 maximum speed send/receive fax modem the 1,5
  28. string as it will cause unpredicable results.
  29.  
  30. [FDSETUP] Modem -> Answer control
  31.   Manual answer    Yes
  32.   Force answer ... at+faa=1;a|
  33.   Answer delay ... 2
  34.  
  35. The "at+faa=1;a" causes the modem to answer adaptively, i.e., to
  36. automatically determine whether the incoming call is fax or data and return
  37. the response to the modem.  The Answer delay may need to be modified if you
  38. are using Caller ID.
  39.  
  40. [FDSETUP] Mailer -> Errorlevels
  41.   Fax ... 255
  42.  
  43. ==========================================================================
  44.  
  45. If you are using a modem such as a Supra that returns a "FAX" response
  46. proceed with the following instructions ( METHOD #1 ) ...
  47.  
  48. [FDSETUP] Modem -> Default Settings -> Messages
  49.    Fax ... FAX
  50.  
  51. FDRUN.BAT should contain something similar to ...
  52.  
  53. @echo off
  54. c:
  55. cd\fd
  56. fd
  57. if errorlevel 255 goto fax 
  58. if errorlevel 103 maint.bat
  59. if errorlevel 102 toss.bat
  60. if errorlevel 101 local.bat
  61. if errorlevel 100 dobbs.bat
  62. goto end
  63. :fax
  64.   rem ---1 is for com1 and z is for zfax format
  65.   bgfax /fax c:\bgfax 1 z
  66.   fdrun.bat
  67. :end
  68.  
  69. ==========================================================================
  70.  
  71. If you are using a modem such as a PPI FXMT that returns a "+FCON" response
  72. proceed with the following instructions ( METHOD #2 ) ...
  73.  
  74. [FDSETUP] Modem -> Messages
  75.   Fax ... +FCON
  76.  
  77. FDRUN.BAT should contain something similar to ...
  78.  
  79. @echo off
  80. c:
  81. cd\fd
  82. fd
  83. if errorlevel 255 goto fax
  84. if errorlevel 103 maint.bat
  85. if errorlevel 102 toss.bat
  86. if errorlevel 101 local.bat
  87. if errorlevel 100 dobbs.bat
  88. goto end
  89. :fax
  90.   rem ---1 is for com1 and z is for zfax format
  91.   bgfax /fast c:\bgfax 1 z
  92.   rem ---if /fast gives you trouble, try using /fcon
  93.   fdrun.bat
  94. :end
  95.  
  96. ==========================================================================
  97.  
  98. Regards,
  99. B.J. Guillot
  100.  
  101.